Dashboard Temp Share Shortlinks Frames API

HTMLify

style.css
Views: 16 | Author: huxn-webdev
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
body {
  margin: 0;
  font-family: sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  width: 400px;
  margin: 25px;
  padding: 25px;
  border: 1px solid #ccc;
  border-radius: 5px;
  line-height: 1.4;
  box-shadow: 2px 1px 5px 1px;
}

.title {
  margin-top: 0;
  margin-bottom: 25px;
}

.text-input {
  width: 100%;
  height: 225px;
  margin-bottom: 25px;
  resize: none;
  padding: 10px;
  box-sizing: border-box;
}